home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / DLLSKEL.PAK / MAKEFILE < prev    next >
Text File  |  1997-05-06  |  721b  |  26 lines

  1. #----------------------------------------------------------------------------
  2. # Borland C++
  3. # Copyright (c) 1987, 1996 Borland International Inc.  All Rights Reserved.
  4. #   examples\series\dllskel\makefile
  5. #----------------------------------------------------------------------------
  6.  
  7. SYSTEMS = WIN32
  8.  
  9. !if !$d(WIN16)
  10.      SYSTEM    = WIN32
  11. !endif
  12.  
  13. OSMAJOR = 4
  14. OSMINOR = 0
  15. MODEL   = d  #force use of DLLs
  16. EXERES  = appskel
  17. CPCH    = -Hc -H"windows.h" -H=mixtree.csm
  18. OBJEXE  = appskel.obj winmain.obj init.obj about.obj dispatch.obj misc.obj
  19. LIBEXE  = dllskel.lib
  20. DLLRES  = dllskel
  21. CPCHD   = -Hc -H"windows.h" -H=dllskel.csm
  22. OBJDLL  = dllmain.obj exports.obj
  23.  
  24. !include $(BCEXAMPLEDIR)\makefile.gen
  25.  
  26.